From 7bbf69bc87fec719c1dab9b40e6d156d0e8b1d6e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 28 Jun 2010 17:35:10 +0100 Subject: [PATCH] tools/ocaml: Add .NOTPARALLEL to Makefile tools/ocaml was capable of descending into lib/* and xenstored/ simultaneously, obviously with poor results. Signed-off-by: Ian Jackson --- tools/ocaml/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/ocaml/Makefile b/tools/ocaml/Makefile index 2a36e7bc8c..36e5f9e320 100644 --- a/tools/ocaml/Makefile +++ b/tools/ocaml/Makefile @@ -10,6 +10,10 @@ SUBDIRS_PROGRAMS = xenstored SUBDIRS = $(SUBDIRS_LIBS) $(SUBDIRS_PROGRAMS) +.NOTPARALLEL: +# targets here must be run in order, otherwise we can try +# to build programs before the libraries are done + .PHONY: all all: build -- 2.30.2